CreditCard

interface CreditCard

The credit card information persisted in the credit card store.

Since

7.23

Types

Link copied to clipboard
class Builder
A builder of CreditCard.

Functions

Link copied to clipboard
open fun cardholder(): String
The name of the cardholder entered by the user.
Link copied to clipboard
The expiration month of the credit card.
Link copied to clipboard
open fun expirationYear(): Int
The expiration year of the credit card.
Link copied to clipboard
open fun network(): CreditCardNetwork
The network issuer of the card.
Link copied to clipboard
open fun newBuilder(number: String, expMonth: Int, expYear: Int): CreditCard.Builder
Creates a new CreditCard builder with the given required parameters.
Link copied to clipboard
open fun number(): String
The card number.